From: Stefan Monnier Date: Thu, 19 Aug 2004 19:00:58 +0000 (+0000) Subject: (char_quoted): Mixup byte/char pos. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~21357 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=d3b5606ce3ed838802bcc17699c16be6d8055ec6;p=emacs.git (char_quoted): Mixup byte/char pos. --- diff --git a/src/syntax.c b/src/syntax.c index 83763061d82..e1fb7532b85 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -292,7 +292,7 @@ char_quoted (charpos, bytepos) DEC_BOTH (charpos, bytepos); - while (bytepos >= beg) + while (charpos >= beg) { int c;